home *** CD-ROM | disk | FTP | other *** search
- /*
- SongPlayerCLI v1.52 (by Gareth Griffiths)
- E-Mail: gazchap@btinternet.com
- Last.rexx - Moves to the last file in the playlist.
- */
-
- IF ~SHOW('P','SONGPLAYER.1') THEN DO
- ADDRESS COMMAND
- SAY "Can't find ARexx port 'SONGPLAYER.1'"
- EXIT
- END
-
- ADDRESS 'SONGPLAYER.1'
- OPTIONS RESULTS
- 'GET_COUNT'
- mp3count=result
- 'SELECT 'mp3count
- 'GET_TITLE';title=result
- 'GET_ARTIST';artist=result
- 'GET_SELECTED';index=result
- ADDRESS COMMAND
- SAY 'Now Playing: ('index') 'artist': 'title
- EXIT